body {
  min-width: 1200px;
}

.header {
  width: 100%;
  height: 115px;
  margin: 0 auto;
  background-color: #fff;
  background-image: url(../images/header-top.png);
  background-repeat: no-repeat;
  background-position-y: 0px;
}

.hdr_ct {
  width: 1200px;
  margin: 0 auto;
}

.hdr_ct .hdr_lt {
  float: left;
  margin-top: 15px;
}

.hdr_ct .hdr_rt {
  float: right;
  margin-top: 0px;
}

.hdr_ct .hdr_rt ul {
  float: left;
  margin-right: 0px;
  margin-top:55px;
}

.hdr_ct .hdr_rt li {
  float: left;
  margin-right: 20px;
}

.hdr_ct .hdr_rt li a {
  font-size: 14px;
  color: #6b6b6b;
}

.search_f1 {
  float: left;
  position: relative;
  margin-top: 65px;
  /* overflow: hidden; */
}

.search-wrapper {
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  margin-top: 0px;
}

.search-wrapper.active {}

.search-wrapper .input-holder {
  overflow: hidden;
  height: 50px;
  background: rgba(255, 255, 255, 0);
  border-radius: 6px;
  position: relative;
  width: 70px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-wrapper.active .input-holder {
  border-radius: 50px;
  width: 280px;
  background:#ccc;
  -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.search-wrapper .input-holder .search-input {
  width: 100%;
  height: 40px;
  padding: 0px 20px 0 70px;
  opacity: 0;
  position: absolute;
  top: -4px;
  left: 0px;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-family: "Open Sans", Arial, Verdana;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  color: #333;
  -webkit-transform: translate(0, 60px);
  -moz-transform: translate(0, 60px);
  transform: translate(0, 60px);
  -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  -moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search-wrapper.active .input-holder .search-input {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 6px;
  background: #FFF;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: left;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
}

.search-wrapper.active .input-holder .search-icon {
  width: 35px;
  height: 35px;
  margin: 7px;
  border-radius: 30px;
}

.search-wrapper .input-holder .search-icon span {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  /* -webkit-transform: rotate(45deg); */
  -moz-transform: rotate(45deg);
  /* transform: rotate(45deg); */
  /* -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650); */
  -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
  /* transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650); */
  background-image: url(../images/sousuo.png);
  background-repeat: no-repeat;
  background-position: 3px 3px;
}

.search-wrapper.active .input-holder .search-icon span {
  /* -webkit-transform: rotate(-45deg); */
  -moz-transform: rotate(-45deg);
  /* transform: rotate(-45deg); */
}

.search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
  position: absolute;
  content: '';
}

.search-wrapper .input-holder .search-icon span::before {
  /* width: 4px; */
  /* height: 11px; */
  /* left: 9px; */
  /* top: 18px; */
  /* border-radius: 2px; */
  /* background: #974BE0; */
}

.search-wrapper .input-holder .search-icon span::after {
  /* width: 14px; */
  /* height: 14px; */
  /* left: 0px; */
  /* top: 0px; */
  /* border-radius: 16px; */
  /* border: 4px solid #974BE0; */
}

.search-wrapper .close {
  position: absolute;
  z-index: 1;
  top: 13px;
  right: 35px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
  -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
  transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.search-wrapper.active .close {
  left: 240px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search-wrapper .close::before, .search-wrapper .close::after {
  position: absolute;
  content: '';
  background: #333;
  border-radius: 2px;
}

.search-wrapper .close::before {
  width: 5px;
  height: 25px;
  left: 10px;
  top: 0px;
}

.search-wrapper .close::after {
  width: 25px;
  height: 5px;
  left: 0px;
  top: 10px;
}

.search-wrapper .result-container {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0px;
  text-align: center;
  font-family: "Open Sans", Arial, Verdana;
  font-size: 14px;
  display: none;
  color: #B7B7B7;
}

@media screen and (max-width: 560px) {
  .search-wrapper.active .input-holder {
    width: 200px;
  }
}

.nav_box {
  width: 100%;
  height: 70px;
  background-color: #00163F;
}

.nav_box .nav_f1 {
  width: 1200px;
  margin: 0 auto;
}

.nav {
  width: 100%;
  margin: 0 auto;
  height: 55px;
  line-height: 55px;
  z-index: 1;
  /* margin-top: 20px; */
  /* padding-top: 18px; */
}

.clearfix {
  zoom: 1;
}

.nav a {
  color: #ffffff;
  font-size: 16px;
}

.nav .nLi {
  float: left;
  position: relative;
  display: inherit;
  line-height: 70px;
  height: 70px;
}

/* .nav .nLi1{margin-left: -15px;} */
.nav .nLi1 .sub {
  display: none;
}

.nav .nLi h3 {
  float: left;
}

.nav .nLi .xian {
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #B6D3FB;
  margin-top: 15px;
}

.nav .nLi h3 a {
  display: block;
  padding: 0 23px;
  font-size: 16px;
  font-weight: bold;
  color: #ffff;
  font-weight: normal;
  /* height: 50px; */
  /* text-decoration: none; */
}

.nav .sub {
  display: none;
  width: 120%;
  left: -10%;
  top: 65px;
  position: absolute;
  /* background-color: #0870C5; */
  line-height: 70px;
  /* background-repeat: no-repeat; */
  /* background-position-x: 50%; */
  /* padding-top: 6px; */
  /* margin-top: 46px; */
  /* background-color: rgba(87,87,87,0.7); */
  background-color: rgba();
  background-image: url(../images/nav_sub.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  z-index: 1;
}

.nav .sub li {
  zoom: 1;
  /* background-color: #AE1C1C; */
  /* margin-top: 1px; */
  line-height: 40px;
  /* margin-top: 20px; */
  background-color: rgba(87, 87, 87, 0.7);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2333333,endColorstr=#B2333333);
}

.nav .sub a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px;
}

.nav .sub li.f1 {
  margin-top: 5px;
}

.nav .xian {}

.nav .sub a:hover {
  background: #C73208;
  color: #fff;
}

.nav .on h3 a {
  /* background: #FFFFFF; */
  color: #fff;
  /* font-weight: bold; */
}

.banner {
  width: 100%;
  margin: 0 auto;
  height: auto;
  /* clear: both; */
  /* margin-top: -153px; */
  overflow: hidden;
}

.slideBox {
  width: 100%;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  position: relative;
}

.slideBox .bd li {
  position: relative;
}

.slideBox .hd {
  height: 15px;
  overflow: hidden;
  position: absolute;
  right: 73.5%;
  bottom: 6%;
  z-index: 1;
}

.slideBox .hd ul {
  overflow: hidden;
  zoom: 1;
  float: left;
}

.slideBox .hd ul li {
  float: left;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  line-height: 14px;
  text-align: center;
  /* background: #BAC9D3; */
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(147, 154, 135, 0.8);
  transition: 1.5s;
}

.slideBox .bd ul li p.bt {
  font-size: 24px;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 19%;
}

.slideBox .hd ul li.on {
  background: #fff;
  color: #fff;
  /* width: 50px; */
  transition: 1.5s;
}

.slideBox .bd {
  position: relative;
  height: 100%;
  z-index: 0;
}

.slideBox .bd li {
  zoom: 1;
  vertical-align: middle;
}

.slideBox .bd img {
  width: 100%;
  height: auto;
  display: block;
  background-size: 100% 450px;
  transition: 1.5s;
}

.slideBox .prev,
.slideBox .next {
  position: absolute;
  left: 19%;
  top: 95%;
  display: block;
  filter: alpha(opacity=50);
  opacity: 0.5;
  margin-top: -26px;
}

.slideBox .prev {
  background: url(../images/banner-zuo.png) no-repeat;
  width: 25px;
  height: 25px;
}

.slideBox .next {
  left: auto;
  left: 20.5%;
  background-position: 8px 5px;
  background: url(../images/banner-you.png) no-repeat;
  width: 25px;
  height: 25px;
  /* bottom: 65px; */
}

.slideBox .prev:hover,
.slideBox .next:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

.slideBox .prevStop {
  display: none;
}

.slideBox .nextStop {
  display: none;
}

.xyxw {
  width: 100%;
  background: url(../images/xyxw_bj.png) no-repeat center;
  margin: 0 auto;
  min-height: 150px;
  background-position-y: 23%;
  background-position-x: 103%;
  overflow: hidden;
  padding-bottom: 30px;
}

.xyxw .xyxw_ct {
  width: 1200px;
  margin: 0 auto;
}

.xyxw .xyxw_ct .bt {
  margin: 25px 0;
}

.xyxw .xyxw_ct .bt img {
  float: left;
  margin-right: 15px;
}

.xyxw .xyxw_ct .bt p.f1 {
  font-size: 26px;
  color: #062945;
  /* padding: 10px 0; */
  display: inline-block;
}

.xyxw .xyxw_ct .bt p.f1 span {
  font-size: 18px;
  color: #c5c5c5;
  margin-left: 15px;
}

.xyxw .xyxw_ct .bt a.more {
  float: right;
  font-size: 14px;
  color: #b5b5b5;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
}

.ber_lt {
  float: left;
}

.picFocus {
  width: 600px;
  height: 340px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.picFocus .hd {
  width: 100%;
  padding-top: 5px;
  position: absolute;
  right: -510px;
  bottom: 14px;
}

.picFocus .hd ul {
  overflow: hidden;
  zoom: 1;
}

.picFocus .hd ul li {
  float: left;
  width: 10px;
  height: 10px;
  /* border-radius: 50%; */
  /* border: 2px solid #fff; */
  margin-left: 10px;
  background-color: #fff;
  border-radius: 50%;
}

.picFocus .hd ul li.on {
  background-color: #FF9900;
}

.picFocus .bd li {
  vertical-align: middle;
  position: relative;
}

.picFocus .bd img {
  width: 600px;
  height: 340px;
  display: block;
  z-index: 1;
}

.picFocus .bd li .showd {}

.picFocus .bd li .showd p {
  margin-left: 15px;
  float: left;
  float: left;
  color: #ffffff;
  font-size: 16px;
  line-height: 40px;
}

.bt_rt {
  width: 550px;
  float: right;
}

.list_f1_ul .list_li_f1 {
  background: url(../images/list_li_f1.png) no-repeat;
  background-position-y: 100%;
}

.list_f1_ul .list_li_f1 a {
  color: #b12923 !important;
  font-size: 18px !important;
  font-weight: bold !important;
}

.list_f1_ul .list_li_f1 i {
  background-color: #E21923;
}

.list_f1_ul .list_li_f1 p.zy {
  font-size: 12px;
  color: #9c9898;
  line-height: 20px;
  text-indent: 2em;
  margin-left: 25px;
  margin-bottom: 10px;
  padding-bottom: 15px;
}

.list_f1_ul li {
  line-height: 41px;
}

.list_f1_ul li i {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
  border: 1px #E21923 solid;
}

.list_f1_ul li a {
  font-size: 16px;
  color: #333;
}

.list_f1_ul li span {
  font-size: 16px;
  color: #ccc;
  float: right;
}

.main {
  width: 100%;
  margin: 0 auto;
  height: 360px;
  background-image: url(../images/main_f1.png);
  background-color: #F0F4FD;
  background-repeat: no-repeat;
}

.main_ct {
  width: 1200px;
  margin: 0 auto;
}

.main_ct .main_lt {
  float: left;
  width: 380px;
}

.main_ct .main_lt .bt {
  margin: 25px 0;
}

.main_ct .main_lt .bt img {
  float: left;
  margin-right: 15px;
}

.main_ct .main_lt .bt p.f1 {
  font-size: 26px;
  color: #062945;
  /* padding: 10px 0; */
  display: inline-block;
}

.main_ct .main_lt .bt p.f1 span {
  font-size: 18px;
  color: #c5c5c5;
  margin-left: 15px;
}

.main_ct .main_lt .bt a.more {
  float: right;
  font-size: 14px;
  color: #b5b5b5;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
}

.main_ct .main_lt .ul_f1 li {
  border-bottom: 1px #D0D4DD solid;
  line-height: 60px;
}

.main_ct .main_lt .ul_f1 li.f1 {
  margin-top: -20px;
}

.main_ct .main_lt .ul_f1 li a {
  font-size: 16px;
  color: #333;
}

.main_ct .main_lt .ul_f1 li a span.time {
  display: inline-block;
  font-size: 20px;
  color: #062945;
  font-family: "Arial";
  margin-right: 30px;
}

.main_ct .main_rt {
  float: right;
}

.ljgs {
  width: 100%;
  height: 440px;
  margin: 0 auto;
  background-image: url(../images/ljgs.png);
  background-repeat: no-repeat;
  background-color: #06263F;
}

.ljgs_ct {
  width: 1200px;
  margin: 0 auto;
}

.ljgs_ct .bt {
  padding: 25px 0;
}

.ljgs_ct .bt img {
  float: left;
  margin-right: 15px;
}

.ljgs_ct .bt p.f1 {
  font-size: 26px;
  color: #fff;
  /* padding: 10px 0; */
  display: inline-block;
}

.ljgs_ct .bt p.f1 span {
  font-size: 18px;
  color: #c5c5c5;
  margin-left: 15px;
}

.ljgs_ct .bt a.more {
  float: right;
  font-size: 14px;
  color: #b5b5b5;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
}

.douban {
  width: 1200px;
  position: relative;
  clear: both;
  /* margin-top: 10px; */
}

.douban .hd {
  height: 10px;
  /* line-height: 22px; */
}

.douban .hd h2 {
  float: left;
  font: 15px Arial, Helvetica, sans-serif;
  color: #072;
  margin: 0 0 12px 0;
}

.douban .hd h2 a {
  color: #37A;
  font-size: 12px;
  margin-left: 10px;
}

.douban .hd .next {
  float: right;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/banner_left1.png) no-repeat;
  overflow: hidden;
  margin-right: 6px;
  cursor: pointer;
  position: absolute;
  right: -95px;
  top: 50%;
  /* margin-top: 15px; */
}

.douban .hd .prev {
  float: right;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/banner_left.png) no-repeat;
  overflow: hidden;
  margin-right: 6px;
  cursor: pointer;
  position: absolute;
  left: -80px;
  top: 50%;
  /* margin-top: 15px; */
}

.douban .hd .prevStop {
  background-position: -6px -40px;
  cursor: default;
}

.douban .hd .nextStop {
  background-position: -34px -40px;
  cursor: default;
}

.douban .hd ul {
  float: right;
  margin: 6px 6px 0 0;
  zoom: 1;
}

.douban .hd ul li {
  float: left;
  cursor: pointer;
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  _display: inline;
  background: url(../images/switch_dot_small.jpg) no-repeat 0 0;
}

.douban .hd ul li.on {
  background-position: -12px 0;
}

.douban .bd {
  padding: 12px 0 0 0;
}

.douban .bd ul {
  overflow: hidden;
  zoom: 1;
}

.douban .bd ul li {
  float: left;
  width: 270px;
  margin-right: 40px;
  height: 270px;
  position: relative;
}

.douban .bd ul li img {
  width: 260px;
  height: 155px;
  position: absolute;
  z-index: 1;
}

.douban .bd ul li .f2 {
  width: 260px;
  height: 188px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 20px;
}

.douban .bd ul li.f3 img {
  top: 60px;
}

.douban .bd ul li.f3 .f2 {
  top: 82px;
}

.douban .bd ul li .f2 p {
  margin-top: 150px;
  text-align: center;
  font-size: 15px;
  color: #333;
}

.douban .bd ul li:hover .f2 {
  background-color: #CD3301;
}

.douban .bd ul li:hover .f2 p {
  color: #fff;
}

.douban .bd ul li:hover .bd_li_yy {
  top: 20px;
  transition: 2.5s;
}

.douban .bd ul li .bd_li_yy {
  width: 260px;
  height: 140px;
  background-repeat: no-repeat;
  position: absolute;
  left: 10px;
  top: 160px;
  transition: 2.5s;
  background: rgba(170, 65, 62, .7);
}

.douban .tempWrap {
  width: 1200px !important;
}

.douban .bd ul li .bd_li_yy p {
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  line-height: 25px;
  padding-top: 35px;
}

.main_f3 {
  width: 100%;
  height: 410px;
  margin: 0 auto;
  background-color: #F4F5F7;
}

.main_f3 .main_ct {
  width: 1200px;
  margin: 0 auto;
  /* margin-top: 15px; */
  padding-top: 10px;
}

.main_f3 .main_ct .zsjy {
  width: 370px;
  float: left;
  margin-right: 30px;
}

.main_f3 .main_ct .zsjy .bt {
  margin: 25px 0 0 0;
}

.main_f3 .main_ct .zsjy .bt img {
  float: left;
  margin-right: 15px;
}

.main_f3 .main_ct .zsjy .bt .f1 {
  font-size: 26px;
  color: #2C425A;
  /* padding: 10px 0; */
  display: inline-block;
}

.main_f3 .main_ct .zsjy .bt .f1 span {
  font-size: 18px;
  color: #c5c5c5;
  margin-left: 15px;
  font-family: "Arial";
  font-weight: normal;
}

.main_f3 .main_ct .zsjy .bt a.more {
  float: right;
  font-size: 14px;
  color: #b5b5b5;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
  font-family: "Arial";
}

.main_f3 .main_ct .zsjy ul.f1 li.f2 {
  /* position: relative; */
  border-bottom: 1px solid #DCDADB;
  padding-bottom: 25px;
  margin-bottom: 15px;
  height: 115px;
}

.main_f3 .main_ct .zsjy ul.f1 li.f2 img {
  width: 150px;
  height: 80px;
  float: left;
}

.main_f3 .main_ct .zsjy ul.f1 li.f2 .pt p.f1 {
  font-size: 16px;
  color: #062945;
  margin-left: 165px;
  padding: 0 10px;
}

.main_f3 .main_ct .zsjy ul.f1 li.f2 .pt p.time {
  font-size: 14px;
  color: #999999;
  /* position: absolute; */
  margin-left: 175px;
  margin-top: 20px;
}

.main_f3 .main_ct .zsjy ul.f1 li.f3 a {
  font-size: 15px;
  color: #333;
}

.main_f3 .main_ct .zsjy ul.f1 li.f3 a i {
  background: url(../images/zsjy_li_i.png) no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 10px;
}

.main_f3 .main_ct .xzzx ul.f1 li.f3 a i {
  background: url(../images/xzzx_li_i.png) no-repeat;
}

.main_f3 .main_ct .zsjy ul.f1 li.f3 {
  line-height: 50px;
}

.main_f3 .main_ct .zsjy ul.f1 li.f3 p.time {
  font-size: 14px;
  color: #999999;
  float: right;
}

.ztzl {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 50px;
}

.ztzl .bt {
  margin: 25px 0;
}

.ztzl .bt img {
  float: left;
  margin-right: 15px;
}

.ztzl .bt p.f1 {
  font-size: 26px;
  color: #062945;
  /* padding: 10px 0; */
  display: inline-block;
}

.ztzl .bt p.f1 span {
  font-size: 18px;
  color: #c5c5c5;
  margin-left: 15px;
  font-family: "Arial";
}

.ztzl .bt a.more {
  float: right;
  font-size: 14px;
  color: #b5b5b5;
  display: inline-block;
  font-weight: bold;
  margin-top: 15px;
  font-family: "Arial";
}

.ztzl .ztzl_top li {
  width: 185px;
  height: 80px;
  background-color: #567BBF;
  float: left;
  margin-right: 18px;
}

.ztzl .ztzl_top li a {
  color: #fff;
  font-size: 18px;
  display: block;
  padding: 0 10px;
  text-align: center;
  /* margin-top: 20px; */
  padding-top: 17px;
}

.ztzl .ztzl_top li.f2 {
  background-color: #D44F48;
}

.ztzl .ztzl_top li.f2 a {
  text-align: center;
  line-height: 80px;
  padding: 0;
}

.ztzl .ztzl_top li.f3 {
  background-color: #665A9A;
}

.ztzl .ztzl_top li.f4 {
  background-color: #CE9433;
}

.ztzl .ztzl_top li.f5 {
  background-color: #4190B1;
}

.ztzl .ztzl_top li.f6 {
  background-color: #AD6ABA;
  margin-right: 0;
}

.ztzl .ztzl_top {
  overflow: hidden;
  margin-bottom: 30px;
}

.ztzl .ztzl_btm {}

.ztzl .ztzl_btm li {
  float: left;
}

.ztzl .ztzl_btm li.f1 {
  float: right;
}

.footer {
  width: 100%;
  height: 145px;
  background-image: url(../images/footer_bj.png);
  background-repeat: no-repeat;
  margin: 0 auto;
  background-color: #032541;
}

.footer .ftr_ct {
  width: 1200px;
  margin: 0 auto;
}

.footer .ftr_ct .ftr_lt {
  float: left;
  margin-top: 40px;
}

.footer .ftr_ct .ftr_lt1 {
  float: left;
  margin-top: 50px;
  margin-left: 50px;
}

.footer .ftr_ct .ftr_lt1 p {
  color: #fff;
  font-size: 14px;
  opacity: 0.6;
  line-height: 25px;
}

.ftr_ct .weixin {
  float: right;
  margin-top: 55px;
}

.ftr_ct .weixin li {
  float: left;
  margin-right: 20px;
}

.ftr_ct .weixin li.f1 {
  margin-right: 0;
}

.beijing {
  width: 100%;
  margin: 0 auto;
}

.beijing img {
  height: auto;
  width: 100%;
}

.list_bg {
  width: 1200px;
  margin: 0 auto;
  /* margin-top: 40px; */
  min-height: 700px;
  position: relative;
  clear: both;
  overflow: hidden;
  /* margin-top: -60px; */
  margin-top: -65px;
  clear: both;
}

.list_bg_1 .list_right_1 {
  width: 1200px !important;
}

.list_bg_1 .list_right_1 .list_right_lm {
  width: 1200px !important;
}

.list_bg_1 .list_content_ct1 .content_ct {
  padding: 0px;
}

.list_bg_1 .list_content_ct1 b {
  width: 1200px !important;
}

.list_bg .list_left_1 {
  width: 250px;
  float: left;
  /* min-height: 400px; */
  background-position-y: 90%;
  background-repeat: no-repeat;
  background-position-x: 90%;
  border-radius: 10px 10px 30px 10px;
  /* background-color: #F2F2F2; */
  position: absolute;
  top: 1px;
}

.list_bg .list_left_1 h4 {
  width: 250px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  /* background-color: #1D7DCA; */
  font-size: 26px;
  color: #feffff;
  font-weight: normal;
  background-repeat: no-repeat;
  background-image: url(../images/list_sub.png);
  background-size: 100% 100%;
}

.list_bg .list_left_1 .smu {
  background-color: #D3A78C;
}

.list_bg .list_left_1 .sideMenu {
  /* background-color: #F2F2F2; */
  width: 185px;
  /* margin-bottom: 140px; */
  padding: 0 30px;
  padding-bottom: 50px;
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #F0F4FD;
  margin-left: 5px;
}

.list_bg .list_left_1 .sideMenu ul {
  /* padding: 0 10px; */
  /* border-bottom: 1px solid #ccc; */
}

.list_bg .list_left_1 .sideMenu ul li:last-child {
  /* border-bottom: 1px solid #ccc; */
}

.list_bg .list_left_1 li {
  font-size: 16px;
  height: 40px;
  /* background-color: #F2F2F2; */
  line-height: 40px;
  position: relative;
}

.sideMenu {
  /* background-color: #F2F2F2; */
  /* width: 230px; */
  /* display: inline-block; */
  /* padding-bottom: 50px; */
}

.list_bg .list_left_2 {
  margin-bottom: 50px;
}

.sideMenu h3 em {
  width: 20px;
  height: 20px;
  /* background-color: red; */
  display: inline-block;
  float: right;
  margin-top: 26px;
  background-image: url(../images/list_jt_you.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.sideMenu h3.on em {
  background-image: url(../images/list_jt_xia.png);
}

.list_bg .list_left_1 .sideMenu h3 {
  font-size: 16px;
  /* font-weight: bold; */
  width: 190px;
  height: 60px;
  /* background-color: #fff; */
  /* margin-left: 11px; */
  /* margin-top: 25px; */
  line-height: 60px;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.list_bg .list_left_1 .sideMenu li a {
  margin-left: 40px;
  font-size: 14px;
  width: 145px;
  overflow: hidden;
  height: 40px;
}

.list_bg .list_left_1 .sideMenu h3:hover a {
  /* color: #fff; */
}

.list_bg .list_left_1 .sideMenu h3 a {
  margin-left: 10px;
  float: left;
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  height: 60px;
  overflow: hidden;
}

.list_bg .list_left_1 .sideMenu ul li {
  margin-top: 2px;
}

.list_bg .list_left_1 .sideMenu ul li i {
  width: 10px;
  height: 10px;
  /* margin-left: -130px; */
  background: url(../images/sub_li_dian1.png) no-repeat;
  /* margin-top: 21px; */
  display: inline-block;
  margin-bottom: 2px;
  /* border-radius: 50%; */
  position: absolute;
  top: 18px;
  left: 20px;
}

.list_bg .list_left_1 .sideMenu ul li:hover i {
     background: url(../images/sub_li_dian2.png) no-repeat;
}

.list_bg .list_left_1 .sideMenu ul li {}

/* .list_bg .list_left_1 li:hover i {
  background-color: #ED292F
} */
.list_bg .list_left_1 li:hover a {
  color: #00153e;
  font-size: 14px;
  font-weight: bold;
}

.list_bg .list_left_1 .sideMenu h3 i {
  width: 5px;
  height: 61px;
  background-repeat: no-repeat;
  border-radius: 5px;
  display: inline-block;
  float: left;
  /* margin-top: 22px; */
  /* margin-left: 12px; */
  margin-right: 30px;
  display: none;
}

.sideMenu h3.on {

}

.sideMenu h3.on a {
  color: #00153e !important;
  font-weight: bold;
  font-size: 18px !important;
}

.sideMenu h3.on i {
  background-color: #E40D1C;
}

.list_bg .list_left_1 li a {
  margin-left: 10px;
  float: left;
  color: #333;
}

.list_bg .list_right_1 {
  width: 910px;
  float: right;
  /* clear: both; */
  overflow: hidden;
  margin-top: 80px;
}

.list_bg .list_right_1 .list_right_lm {
  width: 910px;
  height: 35px;
  border-bottom: 1px solid #00133B;
  line-height: 35px;
}

.list_bg .list_right_1 .list_right_lm h4 {
  float: left;
  height: 35px;
  line-height: 25px;
  font-size: 26px;
  color: #00153e;
  /* border-bottom: 2px solid #0870C7; */
  font-weight: normal;
}

.list_bg .list_right_1 .list_right_lm ul {
  float: right;
  font-size: 14px;
  color: #888888;
  line-height: 40px;
}

.list_bg .list_right_1 .list_right_lm ul li a {
  color: #888888;
}

.list_bg .list_right_1 .list_right_lm ul li a {
  font-size: 14px;
  color: #888;
}

.list_bg .list_right_1 .list_right_lm ul li {
  float: left;
}

.list_bg .list_right_1 .list_right_lm ul span img {
  float: left;
  margin-top: 12px;
  margin-left: -20px;
}

.list_content_ct ul {
  margin-top: 5px;
}

.list_content_ct li {
  line-height: 56px;
  border-bottom: 1px solid #E8E8E8;
  font-size: 15px;
}

.list_content_ct li a {
  color: #333;
  font-size: 15px;
}

.list_content_ct li:hover a {
  margin-left: 15px;
  color: #0039A5;
}

.list_content_ct li .span_dian {
  width: 5px;
  height: 5px;
  background-color: #D4C59B;
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
}

.list_content_ct li i {
  float: right;
  font-size: 14px;
  color: #888888;
  font-style: normal;
}

.list_content_ct_1 li {
  border: 1px solid #ccc !important;
  border-left: none;
  border-right: none;
  overflow: hidden;
  line-height: 25px;
  margin-bottom: 40px;
}

.list_content_ct_1 li:nth-child(1) {
  margin-top: 30px;
}

.list_content_ct_1 li:hover a {
  margin-left: 20px;
}

.list_content_ct_1 li .fangda {
  width: 200px;
  height: 100px;
  float: left;
  overflow: hidden;
}

.list_content_ct_1 li .fangda img {
  width: 200px;
  height: 100px;
  transition: 2.5s;
}

.list_content_ct_1 li img:hover {
  transform: scale(1.5);
  transition: 2.5s;
}

.list_content_ct_1 li a {
  float: left;
  margin-left: 20px;
}

.list_content_ct_1 li a h5 {
  font-size: 16px;
  color: #333;
  margin-top: 12px;
}

.list_content_ct_1 li:hover a h5 {
  color: #003366;
}

.list_content_ct_1 li:hover a i {
  color: #003366;
}

.list_content_ct_1 li a p {
  font-size: 14px;
  color: #666;
}

.list_content_ct_1 li i {
  font-size: 12px;
  color: #999;
  float: none;
}

.list_content_ct_1 li i::before {
  content: url(../images/time_1.png);
  background-repeat: no-repeat;
  width: 5px;
  height: 5px;
  padding-right: 10px;
}

.list_content_ct1 {
  margin-top: 40px;
}

.list_content_ct1 .content_ct {
  padding: 0 30px;
  margin-bottom: 30px;
}

.list_content_ct1 .content_ct h5 {
  text-align: center;
  font-size: 22px;
  color: #00153e;
  font-weight: normal;
}

.list_content_ct1 .content_ct h6 {
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 50px;
  font-weight: normal;
}


.list_content_ct1 .content_ct b.b_xian {
background-color:#ccc;
  width: 870px;
  height: 1px;
  /* display: inline-block; */
  display: block;
  margin-bottom: 20px;
  margin-top: 10px;
}

.list_content_ct1 .content_ct p {
  font-size: 15px !important;
  line-height: 30px !important;
  text-indent: 0em;
  margin-top: 1em;
  color: #444;
}

.list_content_ct1 .content_ct .bt_next p {
  line-height: 1em;
  margin-left: -35px;
  margin-top: 1em;
  font-size: 16px;
  cursor: pointer;
}

.list_content_ct1 .content_ct .bt_next .bt_next_top {
  color: #00153e;
  margin-top: 35px;
  display: block;
}

.list_content_ct1 .content_ct .bt_next .bt_next_top a {
  color: #00153e;
}

.list_content_ct1 .content_ct .bt_next p:hover {
  /* color: #003069 */
}

.btn-primary{
  background: none !important;
  border: none !important;
}

.modal .modal-content p{
  font-size: 22px;
  color: #333;
  /* margin-left: 20px; */
  text-align: center;
  line-height: 30px;
}

.modal .modal-content li{
  margin-bottom: 15px;
}

.modal .modal-content li img{
  width: 180px;
  height: 180px;
  display: table;
  margin: 0 auto;
}

.list_content_ct .f1 p.bt{
  border-bottom: 1px solid #ccc;
  padding: 35px 0px 20px 5px;
  font-size: 16px;
  font-weight: bold;
  color: #00153e;
}

.list_content_ct .f1 p.bt img{
  margin-right: 20px;
  margin-bottom: -5px;
}

.list_content_ct .f1 .f2 li{
  float: left;
  border: navajowhite;
  text-align: center;
  width: 113px;
  line-height: 40px;
}

.list_content_ct .f1{
  overflow: hidden;
  margin-top: 5px;
}

.list_content_ct .f1 .f2 li:hover a{
  margin: 0;
}

.list_content_ct .f1 .f2 li a{
font-size: 15px;
color: #333;
}